home *** CD-ROM | disk | FTP | other *** search
/ Wonders of the Modern World / MODERN.iso / pc / program / logo.dxr / Internal (lingo)_1.ls < prev    next >
Encoding:
Text File  |  2000-06-19  |  257 b   |  23 lines

  1. on startMovie
  2.   cursor(-1)
  3.   clearGlobals()
  4. end
  5.  
  6. on stopMovie
  7.   cursor(4)
  8.   clearGlobals()
  9.   unLoad()
  10. end
  11.  
  12. on mouseDown
  13.   global gbMouseDownScript
  14.   if gbMouseDownScript = 1 then
  15.     iEscapeLogo()
  16.   end if
  17. end
  18.  
  19. on iEscapeLogo
  20.   cursor(4)
  21.   go("escape")
  22. end
  23.